chore(deps): update the Go modules to their latest compatible releases - #196
Merged
Conversation
`go get -u ./...` plus a tidy: five direct dependencies and the transitive graph behind them. cel-go 0.31.0, modernc.org/sqlite 1.57.0, grpc 1.83.1, protobuf 1.36.12 and the ag-ui community SDK. No major versions and no API changes — the diff is go.mod, go.sum and the regenerated notices. The Go toolchain stays pinned at 1.26.5. Moving it is a separate decision with CGO and DuckDB implications, and 1.27 changes both encoding/json's escaping of invalid UTF-8 (which internal/ingest asserts against) and the module graph the notices file is generated from. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
vishr
added a commit
that referenced
this pull request
Aug 24, 2026
#196) `go get -u ./...` plus a tidy: five direct dependencies and the transitive graph behind them. cel-go 0.31.0, modernc.org/sqlite 1.57.0, grpc 1.83.1, protobuf 1.36.12 and the ag-ui community SDK. No major versions and no API changes — the diff is go.mod, go.sum and the regenerated notices. The Go toolchain stays pinned at 1.26.5. Moving it is a separate decision with CGO and DuckDB implications, and 1.27 changes both encoding/json's escaping of invalid UTF-8 (which internal/ingest asserts against) and the module graph the notices file is generated from.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
go get -u ./...followed bygo mod tidy. No major versions, no API changes — the diff isgo.mod,go.sumand the regeneratedTHIRD_PARTY_NOTICES.Direct dependencies
github.com/google/cel-gomodernc.org/sqlitegoogle.golang.org/grpcgoogle.golang.org/protobufgithub.com/ag-ui-protocol/ag-ui/sdks/community/goPlus the transitive graph behind them — fsnotify 1.10.1, logrus 1.10.1, klauspost/compress 1.19.2, grpc-gateway 2.30.0 and others.
Two things deliberately left alone:
encoding/json, which failsTestAppendJSONString_MatchesEncodingJSONininternal/ingest, and it resolves a different module graph, which makesTHIRD_PARTY_NOTICEScome out with an extra component.cel-gostops at 0.31.0, not 0.32.0 — that is whatgo get -uresolves to under the current constraints.just checkpasses end to end, including the CGO build and the DuckDB-backed tests.🤖 Generated with Claude Code